fixed yesterdays fix for cross compiling: simply check the variable
authorMichael Natterer <mitch@gimp.org>
Wed, 8 May 2002 15:26:28 +0000 (15:26 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Wed, 8 May 2002 15:26:28 +0000 (15:26 +0000)
2002-05-08  Michael Natterer  <mitch@gimp.org>

* configure.in: fixed yesterdays fix for cross compiling: simply
check the variable "cross_compiling" which gets set by autoconf.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index 8d1fe164a261667fd9927074a813eaf00b8d086b..46fa78cc668255fcc900bece0f53094217629e3f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 Wed May  8 16:14:49 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtktreeview.c 
index 8d1fe164a261667fd9927074a813eaf00b8d086b..46fa78cc668255fcc900bece0f53094217629e3f 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 Wed May  8 16:14:49 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtktreeview.c 
index 8d1fe164a261667fd9927074a813eaf00b8d086b..46fa78cc668255fcc900bece0f53094217629e3f 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 Wed May  8 16:14:49 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtktreeview.c 
index 8d1fe164a261667fd9927074a813eaf00b8d086b..46fa78cc668255fcc900bece0f53094217629e3f 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 Wed May  8 16:14:49 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtktreeview.c 
index 8d1fe164a261667fd9927074a813eaf00b8d086b..46fa78cc668255fcc900bece0f53094217629e3f 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 Wed May  8 16:14:49 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtktreeview.c 
index 8d1fe164a261667fd9927074a813eaf00b8d086b..46fa78cc668255fcc900bece0f53094217629e3f 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-08  Michael Natterer  <mitch@gimp.org>
+
+       * configure.in: fixed yesterdays fix for cross compiling: simply
+       check the variable "cross_compiling" which gets set by autoconf.
+
 Wed May  8 16:14:49 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
 
        * gtk/gtktreeview.c 
index 40575fb1a711ef877d22371f4cdfd2e6fa1fd230..6861c76b7c1bf8d81bbe2d2e8180fab0774c3384 100644 (file)
@@ -881,9 +881,9 @@ AM_CONDITIONAL(USE_MMX, test x$use_mmx_asm = xyes)
 
 dnl Look for a host system's gdk-pixbuf-csource if we are cross-compiling
 
-AM_CONDITIONAL(CROSS_COMPILING, test $build != $host)
+AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
 
-if test $CROSS_COMPILING; then
+if test $cross_compiling = yes; then
   AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no)
   if test x$GDK_PIXBUF_CSOURCE = xno; then
     AC_MSG_ERROR(Could not find a gdk-pixbuf-csource in your PATH)